home *** CD-ROM | disk | FTP | other *** search
/ Saar AMOK 2 / Saar AMOK II - Oktober 1994 (1994)(Kreativ Marketing)(DE)[!][I-7598].iso / disks / 651_700 / 677 / bootscreen / upgrade < prev    next >
Text File  |  1994-02-11  |  2KB  |  73 lines

  1. ; Upgrade script for BootScreen
  2. ; Copyright ©1994 by Joseph Luk, all rights reserved.
  3. ; $VER: BootScreen 2.1, BootScreenClose 2.00, BootScreen Prefs 2.1
  4.  
  5. (set #PRGVersion 
  6.    ("2.1")
  7. )
  8.  
  9.  
  10. (welcome 
  11.    ("This procedure is for users of older BootScreen versions.  It will automatically remove old files and prepare you for BootScreen ")
  12.    (#PRGVersion)
  13.    ("!\n\nThe recommended user level is \"Intermediate\".")
  14. )
  15.  
  16. (set @default-dest "SYS:")
  17.  
  18. (set #choice
  19.    (askchoice
  20.       (prompt "Please select which version you are upgrading from:")
  21.       (help @askchoice-help)
  22.       (choices
  23.          ("BootScreen 2.00   (04-Feb-94) ")
  24.          ("BootScreen 1.x (1.00, 1.01) ")
  25.          ("BootScreen37 1.x");
  26.       )
  27.    )
  28. )
  29.  
  30. (select #choice
  31.    (
  32.       (copyfiles
  33.          (prompt "Upgrading BootScreen Preferences")
  34.          (help @copyfiles-help)
  35.          (source "bin/Prefs/BootScreen")
  36.          (dest "SYS:Prefs")
  37.       )
  38.       (copyfiles
  39.          (prompt "Upgrading BootScreen program")
  40.          (help @copyfiles-help)
  41.          (source "bin/c/BootScreen")
  42.          (dest "C:")
  43.       )
  44.       (message
  45.          "All done!\n\n"
  46.          "BootScreen "
  47.          #PRGVersion
  48.          " has now been installed.  You do not need to run the Install script.\n\n"
  49.          "Documentation on changes can be found in the \"Release History\" section of the BootScreen.readme file."
  50.       )
  51.       (exit)
  52.    )
  53.    (
  54.       (delete "C:BootScreen")
  55.       (run "bin/c/Update1.x")
  56.    )
  57.    (
  58.       (delete "C:BootScreen37")
  59.       (run "bin/c/Update37")
  60.    )
  61. )
  62.  
  63.  
  64. ; that's it!
  65.  
  66. (set @default-dest "SYS:")
  67.  
  68. (message
  69.    "All done!\n\n"
  70.    "You are now ready to run the main installation procedure.  If you have documentation on your hard disk, make sure to update it too."
  71. )
  72.  
  73. (exit)